SEO using MicroFormat

MicroFormat is a way of using standard HTML tags to encode additional information into the page. This could be Geo data, calendar data, etc…

Example

In this example, the contact information is presented as follows:

<div>
<div>Joe Doe</div>
<div>The Example Company</div>
<div>604-555-1234</div>
<a href=”http://example.com/”>http://example.com/</a>

</div>
With hCard microformat markup, that becomes:

<div class=”vcard”>
<div class=”fn”>Joe Doe</div>
<div class=”org”>The Example Company</div>
<div class=”tel”>604-555-1234</div>
<a class=”url” href=”http://example.com/”>http://example.com/</a>

</div>
These specs are evolving all the time, google around to find the latest.

2 Responses to “SEO using MicroFormat”

  1. » SEO using MicroFormat Says:

    [...] data, etc… Example. In this example, the contact information is presented as follows: … View post Add your [...]

  2. » SEO using MicroFormat Says:

    [...] MicroFormat is a way of using standard HTML tags to encode additional information into the page. This could be Geo data, calendar data, etc… Example Original post [...]

Leave a Reply

You must be logged in to post a comment.